home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / NewsgroupSetMatrix.h < prev    next >
Encoding:
Text File  |  1996-01-30  |  741 b   |  27 lines

  1. // Code found in ScrollDoScroll
  2.  
  3. // NiftyMatrix.h
  4. // By Jayson Adams, NeXT Developer Support Team
  5. // You may freely copy, distribute and reuse the code in this example.
  6. // NeXT disclaims any warranty of any kind, expressed or implied, as to its
  7. // fitness for any particular use.
  8.  
  9. #import "ColumnMatrix.h"
  10. #import <appkit/appkit.h>
  11.  
  12. @interface NewsgroupSetMatrix:ColumnMatrix
  13. {
  14.     id    matrixCache, cellCache, activeCell;
  15. }
  16. - initFrame:(const NXRect *)frameRect;
  17. - free;
  18. - mouseDown:(NXEvent *)theEvent;
  19. - drawSelf:(NXRect *)rects :(int)count;
  20. - setupCacheWindows;
  21. - sizeCacheWindow:cacheWindow to:(NXSize *)windowSize;
  22. //- keyDown:(NXEvent *)theEvent;
  23. //- (BOOL)acceptsFirstResponder;
  24. - (BOOL)selectNewsgroupNamed:(const char *)gname;
  25.  
  26. @end
  27.